home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / modula2 / 269 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  497 b 

  1. Path: news.genie.net!usenet
  2. From: r.barton8@genie.com (Robert L Barton)
  3. Newsgroups: comp.lang.modula2
  4. Subject: Strings.Assign
  5. Date: 11 Feb 1996 19:34:46 GMT
  6. Organization: via GEnie Services (1-800-638-9636 or info@genie.com)
  7. Sender: r.barton8@genie.com (Robert L Barton)
  8. Message-ID: <4flgcm$lfd@rock101.genie.net>
  9. NNTP-Posting-Host: rock103.is.ge.com
  10.  
  11. PROCEDURE Assign (source: ARRAY OF CHAR; VAR destination: ARRAY OF CHAR);
  12. BEGIN
  13.   Extract (source, 0, Length (source), destination)
  14. END Assign;
  15.  
  16.